home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / utils / unixt~3h / unixtkit.arc / man.arc / CAT.MAN < prev    next >
Text File  |  1988-03-28  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4.         CAT                   ST-UNIX User's Manual                   CAT
  5.  
  6.  
  7.  
  8.         COMMAND
  9.              cat - copy files to stdout
  10.  
  11.         FORMAT
  12.              cat [ -u ] [ -n ] [ -s ] [ -v ] file ...
  13.  
  14.         DESCRIPTION
  15.              _✓C_✓a_✓t opens and reads each _✓f_✓i_✓l_✓e in and copies it  to  standard
  16.              output (the screen if not redirected).  To display a file on
  17.              the screen type:
  18.  
  19.                             cat afile
  20.  
  21.              displays the file on the screen. To copy (and concatenate) a
  22.              number of files into one type:
  23.  
  24.                             cat filea fileb >filec
  25.  
  26.              When no input file is given on the command line (or the file
  27.              is  '-') input is taken from standard input (the keyboard if
  28.              not redirected).
  29.  
  30.         OPTIONS
  31.              -u   unbuffer output (output is usualy buffered in 512  byte
  32.                   blocks).
  33.  
  34.              -n   preceed lines with line numbers.
  35.  
  36.              -s   remove multiple blanks lines, only one is displayed.
  37.  
  38.              -v   display non-printing characters as ^character, ie. like
  39.                   ^C.
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.         Printed 10/April/1987    1st March 1987                         1
  64.  
  65.  
  66.  
  67.